home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / htsbasenet.h < prev    next >
C/C++ Source or Header  |  2002-10-07  |  6KB  |  167 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Basic net definitions                                  */
  34. /*       Used in .c and .h files that needs T_SOC and so        */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_DEFBASENETH
  39. #define HTS_DEFBASENETH
  40.  
  41. #if HTS_WIN
  42.  
  43. #if HTS_INET6==0
  44.  #include <winsock.h>
  45. #else
  46. #undef HTS_USESCOPEID
  47. #define WIN32_LEAN_AND_MEAN
  48. #include <winsock2.h>
  49. #include <ws2tcpip.h>
  50. #include <tpipv6.h>
  51. #endif
  52.  typedef SOCKET T_SOC;
  53.  typedef struct hostent FAR t_hostent;
  54.  
  55. #else
  56. #define HTS_USESCOPEID
  57.  #define INVALID_SOCKET -1
  58.  typedef int T_SOC;
  59.  typedef struct hostent t_hostent;
  60. #endif
  61.  
  62. #if HTS_USEOPENSSL
  63. /*
  64.    OpensSSL crypto routines by Eric Young (eay@cryptsoft.com)
  65.    Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  66.    All rights reserved
  67. */
  68. #ifndef HTS_OPENSSL_H_INCLUDED
  69. #define HTS_OPENSSL_H_INCLUDED
  70. #ifdef __cplusplus
  71. extern "C" {
  72. #endif
  73.  
  74. /*
  75. #include <openssl/ssl.h>
  76. #include <openssl/crypto.h>
  77. #include <openssl/err.h>
  78. */
  79.  
  80. /* OpenSSL definitions */
  81. #define SSL_shutdown hts_ptrfunc_SSL_shutdown
  82. #define SSL_free hts_ptrfunc_SSL_free
  83. #define SSL_new hts_ptrfunc_SSL_new
  84. #define SSL_clear hts_ptrfunc_SSL_clear
  85. #define SSL_set_fd hts_ptrfunc_SSL_set_fd
  86. #define SSL_set_connect_state hts_ptrfunc_SSL_set_connect_state
  87. #define SSL_connect hts_ptrfunc_SSL_connect
  88. #define SSL_get_error hts_ptrfunc_SSL_get_error
  89. #define SSL_write hts_ptrfunc_SSL_write
  90. #define SSL_read hts_ptrfunc_SSL_read
  91. #define SSL_library_init hts_ptrfunc_SSL_library_init
  92. #define ERR_load_crypto_strings hts_ptrfunc_ERR_load_crypto_strings
  93. #define ERR_load_SSL_strings hts_ptrfunc_ERR_load_SSL_strings
  94. #define SSLv23_client_method hts_ptrfunc_SSLv23_client_method
  95. #define SSL_CTX_new hts_ptrfunc_SSL_CTX_new
  96. #define ERR_error_string hts_ptrfunc_ERR_error_string
  97. #define SSL_load_error_strings hts_ptrfunc_SSL_load_error_strings
  98. #define SSL_CTX_ctrl hts_ptrfunc_SSL_CTX_ctrl
  99. /* */
  100. typedef void SSL_CTX;
  101. typedef void* SSL;
  102. typedef void SSL_METHOD;
  103. typedef int (*t_SSL_shutdown)(SSL *ssl);
  104. typedef void (*t_SSL_free)(SSL *ssl);
  105. typedef SSL (*t_SSL_new)(SSL_CTX *ctx);
  106. typedef int (*t_SSL_clear)(SSL *ssl);
  107. typedef int (*t_SSL_set_fd)(SSL *ssl, int fd);
  108. typedef void (*t_SSL_set_connect_state)(SSL *ssl);
  109. typedef int (*t_SSL_connect)(SSL *ssl);
  110. typedef int (*t_SSL_get_error)(SSL *ssl, int ret);
  111. typedef int (*t_SSL_write)(SSL *ssl, const void *buf, int num);
  112. typedef int (*t_SSL_read)(SSL *ssl, void *buf, int num);
  113. typedef int (*t_SSL_library_init)(void);
  114. typedef void (*t_ERR_load_crypto_strings)(void);
  115. typedef void (*t_ERR_load_SSL_strings)(void);
  116. typedef SSL_METHOD * (*t_SSLv23_client_method)(void);
  117. typedef SSL_CTX * (*t_SSL_CTX_new)(SSL_METHOD *method);
  118. typedef char * (*t_ERR_error_string)(unsigned long e, char *buf);
  119. typedef void (*t_SSL_load_error_strings)(void);
  120. typedef long (*t_SSL_CTX_ctrl)(SSL_CTX *ctx, int cmd, long larg, char *parg);
  121. extern int SSL_is_available;
  122. extern t_SSL_shutdown SSL_shutdown;
  123. extern t_SSL_free SSL_free;
  124. extern t_SSL_new SSL_new;
  125. extern t_SSL_clear SSL_clear;
  126. extern t_SSL_set_fd SSL_set_fd;
  127. extern t_SSL_set_connect_state SSL_set_connect_state;
  128. extern t_SSL_connect SSL_connect;
  129. extern t_SSL_get_error SSL_get_error;
  130. extern t_SSL_write SSL_write;
  131. extern t_SSL_read SSL_read;
  132. extern t_SSL_library_init SSL_library_init;
  133. extern t_ERR_load_crypto_strings ERR_load_crypto_strings;
  134. extern t_ERR_load_SSL_strings ERR_load_SSL_strings;
  135. extern t_SSLv23_client_method SSLv23_client_method;
  136. extern t_SSL_CTX_new SSL_CTX_new;
  137. extern t_ERR_error_string ERR_error_string;
  138. extern t_SSL_load_error_strings SSL_load_error_strings;
  139. extern t_SSL_CTX_ctrl SSL_CTX_ctrl;
  140. /*
  141. From /usr/include/openssl/ssl.h
  142. */
  143. #define SSL_ERROR_NONE                  0
  144. #define SSL_ERROR_SSL                   1
  145. #define SSL_ERROR_WANT_READ             2
  146. #define SSL_ERROR_WANT_WRITE            3
  147. #define SSL_ERROR_WANT_X509_LOOKUP      4
  148. #define SSL_ERROR_SYSCALL               5 /* look at error stack/return value/errno */
  149. #define SSL_ERROR_ZERO_RETURN           6
  150. #define SSL_ERROR_WANT_CONNECT          7
  151. #define SSL_OP_ALL                                      0x000FFFFFL
  152. #define SSL_CTRL_OPTIONS                        32
  153. #define SSL_CTX_set_options(ctx,op) \
  154.         SSL_CTX_ctrl(ctx,SSL_CTRL_OPTIONS,op,NULL)
  155.  
  156. //#include <openssl/bio.h>
  157. #ifdef __cplusplus
  158.  };
  159. #endif
  160. /* OpenSSL structure */
  161. extern SSL_CTX *openssl_ctx;
  162.  
  163. #endif
  164. #endif
  165.  
  166. #endif
  167.